home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 02 / 8 / DISK0283.ZIP / MAKERAM.BAT < prev    next >
DOS Batch File  |  1985-01-25  |  445b  |  26 lines

  1. echo off
  2. rem make ram.sys and setram.exe using the DeSmet assembler
  3.  
  4. later setram.c setram.exe
  5. if not errorlevel 1 goto nosetram
  6. c88 setram
  7. if errorlevel 1 goto stop
  8. echo  
  9. bind setram -s1000
  10. if errorlevel 1 goto stop
  11. echo  
  12. del setram.o
  13. :nosetram
  14.  
  15. later ram.a ram.sys
  16. if not errorlevel 1 goto stop
  17. asm88 ram
  18. if errorlevel 1 goto stop
  19. echo  
  20. bind ram -a -sFFFF
  21. echo  
  22. del ram.o
  23. exe2bin ram.exe ram.sys
  24. del ram.exe
  25. :stop
  26.